home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / dbwrendr.zip / SOURCE / MAKERAY < prev    next >
Text File  |  1989-11-04  |  2KB  |  74 lines

  1. #########################################################################
  2. #                                     #
  3. #             Copyright (c) 1987, David B. Wecker            #
  4. #                 All Rights Reserved                #
  5. #                                     #
  6. #  This file is part of DBW_Render                    #
  7. #                                     #
  8. #  DBW_Render is distributed in the hope that it will be useful, but    #
  9. #  WITHOUT ANY WARRANTY. No author or distributor accepts        #
  10. #  responsibility to anyone for the consequences of using it or for    #
  11. #  whether it serves any particular purpose or works at all, unless    #
  12. #  he says so in writing. Refer to the DBW_Render General Public    #
  13. #  License for full details.                        #
  14. #                                     #
  15. #  Everyone is granted permission to copy, modify and redistribute    #
  16. #  DBW_Render, but only under the conditions described in the        #
  17. #  DBW_Render General Public License. A copy of this license is        #
  18. #  supposed to have been given to you along with DBW_Render so you    #
  19. #  can know your rights and responsibilities. It should be in a file    #
  20. #  named COPYING. Among other things, the copyright notice and this    #
  21. #  notice must be preserved on all copies.                #
  22. #########################################################################
  23. #                                    #
  24. # Authors:                                #
  25. #    DBW - David B. Wecker                        #
  26. #    jhl - John H. Lowery (IBM port)                    #
  27. #                                    #
  28. # Versions:                                #
  29. #    V1.0 870125 DBW    - First released version            #
  30. #    V2.0 891031 jhl - ported to IBM PC, Microsoft C 5.1, MS MAKE     #
  31. #                                    #
  32. #########################################################################
  33.  
  34. COMPILE = CL /AL /Gs /c 
  35.  
  36. ray.obj : ray.c ray.h
  37.     $(COMPILE) ray.c
  38.  
  39. cal.obj : cal.c ray.h
  40.     $(COMPILE) cal.c
  41.  
  42. ext.obj : ext.c ray.h
  43.     $(COMPILE) ext.c
  44.  
  45. fil.obj : fil.c ray.h
  46.     $(COMPILE) fil.c
  47.  
  48. hit.obj : hit.c ray.h
  49.     $(COMPILE) hit.c
  50.  
  51. int.obj : int.c ray.h
  52.     $(COMPILE) int.c
  53.  
  54. mth.obj : mth.c ray.h
  55.     $(COMPILE) mth.c
  56.  
  57. rnd.obj : rnd.c ray.h
  58.     $(COMPILE) rnd.c
  59.  
  60. tex.obj : tex.c ray.h
  61.     $(COMPILE) tex.c
  62.  
  63. val.obj : val.c ray.h
  64.     $(COMPILE) val.c
  65.  
  66. # WARNING:  DO NOT allow LINK's command line to exceed 128 characters
  67. #            or it will fail.
  68.  
  69. ray.exe : ray.obj cal.obj ext.obj fil.obj hit.obj int.obj mth.obj \
  70.           rnd.obj tex.obj val.obj
  71. LINK ray+cal+ext+fil+hit+int+mth+rnd+tex+val,tmp /ST:32000,ray /MAP;
  72. exepack tmp.exe ray.exe
  73. del tmp.exe
  74.